"Tim (Fractal Footwork)" (fractalfootwork)
03/16/2016 at 21:53 • Filed to: None | 0 | 1 |
!!! UNKNOWN CONTENT TYPE !!!
*That’s a red F1 car in the Apple-verse. Looks like twitter doesn’t like my jokes.
facw
> Tim (Fractal Footwork)
03/17/2016 at 00:59 | 0 |
Plenty of languages will let you have Unicode variable names. Visual Studio’s support caused me big problems long ago. is probably not the best variable name, but support for non-English speaking coders to be able to write in their own language is important (right to left languages are especially fun).
This will compile and run just fine in VC++:
#include “stdafx.h”
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
char * = “Because racecar”;
cout << <
}